Cosmetic improvement to the layout manager demo
authorMatthias Clasen <mclasen@redhat.com>
Wed, 2 Sep 2020 02:32:02 +0000 (22:32 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Thu, 3 Sep 2020 14:09:22 +0000 (10:09 -0400)
Give this a better title, since we will have more
than one layout manager demo soon.

demos/gtk-demo/layoutmanager.c

index 3a715d0fc8c21529ccc3c0420b12575f85042e96..e01d7c981e152f45ae74638e1be26eaefed1ddaf 100644 (file)
@@ -1,10 +1,11 @@
 /* Layout Manager
  *
- * This examples shows a simple example of a custom layout manager
+ * This demo shows a simple example of a custom layout manager
  * and a widget using it. The layout manager places the children
- * of the widget in a grid or a circle, or something in between.
+ * of the widget in a grid or a circle.
  *
  * The widget is animating the transition between the two layouts.
+ *
  * Click to start the transition.
  */
 
@@ -32,7 +33,7 @@ do_layoutmanager (GtkWidget *parent)
       int i;
 
       window = gtk_window_new ();
-      gtk_window_set_title (GTK_WINDOW (window), "Layout Manager");
+      gtk_window_set_title (GTK_WINDOW (window), "Layout Manager—Transition");
       gtk_window_set_default_size (GTK_WINDOW (window), 600, 600);
       g_object_add_weak_pointer (G_OBJECT (window), (gpointer *)&window);